home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 264_01 / cp.doc < prev    next >
Text File  |  1980-01-01  |  1KB  |  30 lines

  1. CP
  2.  
  3. Purpose
  4. copy files and directories
  5.  
  6. Syntax
  7. cp [-fiv] [-] file file
  8. cp [-fiv] [-] file... dir
  9. cp [-fiv] -r [-] file|dir... dir
  10.  
  11. Comments
  12. Cp copies files and, recursively, directories, to a single destination,
  13. which can be a drive specifier, a directory, or a filename.  Cp sets the
  14. time and date of the destination files to the same values as on the
  15. original files. 
  16.  
  17. If a file which would be overwritten has the readonly attribute set, cp
  18. prints a warning message and reads a line from the standard input; if
  19. the line does not begin with 'y' or 'Y', the copy does not take place.
  20.  
  21. Options
  22. -       interpret all following arguments as filenames (used to copy
  23.         files with names that start with a '-').
  24. -f      force; don't quit if errors are encountered, override any readonly
  25.     attributes, and don't display any error messages.
  26. -i      interactive; ask whether to overwrite existing files.
  27. -r      recursively copy arguments which are directories; if not
  28.         specified, arguments which are directories are not copied.
  29. -v      verbose; display the name of each file as it is copied.
  30.